home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / bintests.lha / binutils-2.1 / binutils / Makefile.in.test next >
Makefile  |  1993-04-19  |  15KB  |  472 lines

  1. # Makefile for GNU binary-file utilities
  2. # Copyright (C) 1989-1992 Free Software Foundation, Inc.
  3.  
  4. # This file is part of GNU binutils.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. srcdir = .
  19.  
  20. prefix = /usr/local
  21.  
  22. program_transform_name =
  23. exec_prefix = $(prefix)
  24. bindir = $(exec_prefix)/bin
  25. libdir = $(exec_prefix)/lib
  26. tooldir = $(libdir)/$(target_alias)
  27.  
  28. datadir = $(prefix)/lib
  29. mandir = $(prefix)/man
  30. man1dir = $(mandir)/man1
  31. man2dir = $(mandir)/man2
  32. man3dir = $(mandir)/man3
  33. man4dir = $(mandir)/man4
  34. man5dir = $(mandir)/man5
  35. man6dir = $(mandir)/man6
  36. man7dir = $(mandir)/man7
  37. man8dir = $(mandir)/man8
  38. man9dir = $(mandir)/man9
  39. infodir = $(prefix)/info
  40. includedir = $(prefix)/include
  41. docdir = $(datadir)/doc
  42.  
  43. SHELL = /bin/sh
  44.  
  45. INSTALL = install -c
  46. INSTALL_PROGRAM = $(INSTALL)
  47. INSTALL_DATA = $(INSTALL)
  48.  
  49. AR = ar
  50. AR_FLAGS = qv
  51. CFLAGS = -g
  52. MAKEINFO = makeinfo
  53. TEXI2DVI = texi2dvi
  54. RANLIB = ranlib
  55. BISONFLAGS = -d
  56. TEXI2ROFF=texi2roff
  57.  
  58. SYMLINK = ln -s
  59.  
  60. BISON = `if [ -f ../byacc/byacc ] ; then echo ../byacc/byacc ; else echo byacc ; fi`
  61. # Comment these out if using lex.
  62. LEX_OPTIONS = -I -Cem 
  63. LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
  64.  
  65. # Distribution version
  66. VERSION=2.1
  67. # Distribution name
  68. DIST_NAME=binutils-${VERSION}
  69.  
  70. version=`./../gcc/gcc -dumpversion`
  71.  
  72. # Where to find texinfo.tex to format docn with TeX
  73. TEXIDIR = $(srcdir)/../texinfo/fsf
  74.  
  75. MANPAGES= ar nm objdump ranlib size strip
  76.  
  77. #CC=gcc -Wall
  78. # these two are almost the same program
  79. AR_PROG=ar
  80. RANLIB_PROG=ranlib
  81.  
  82. # copy and strip should be the same program
  83. COPY_PROG=copy
  84. STRIP_PROG=strip
  85.  
  86. # These should all be the same program too.
  87. SIZE_PROG=size
  88. NM_PROG=nm
  89. OBJDUMP_PROG=objdump
  90.  
  91. # This is the demangler, as a standalone program.
  92. DEMANGLER_PROG=demangle
  93.  
  94. PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG)
  95. STAGESTUFF = $(PROGS) *.o
  96. # Files that can be generated, but should be in the distribution.
  97. DISTSTUFF=arparse.c arlex.c binutils.mm
  98.  
  99. BASEDIR = $(srcdir)/..
  100. LIBDIR  = ./../bfd
  101. OPCODEDIR = ./../opcodes
  102.  
  103. #### host and target dependant Makefile fragments come in here.
  104. ###
  105.  
  106. INCLUDES = -I. -I$(srcdir) -I$(BASEDIR)/include -I$(BASEDIR)/bfd
  107.  
  108. .c.o:
  109.     $(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $<
  110.  
  111. #
  112. ## Random definitions
  113. # Hopefully all these may be flushed once we get configuration down pat.
  114.  
  115. # alloca only needed for systems which don't have it and when cc != gcc.
  116. # ALLOCA = alloca.o
  117.  
  118. # nm tries to malloc enough space for the string table.  The old GNU malloc
  119. # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might 
  120. # fail unnecessarily.  I've also seen some Unix malloc's fail, even when
  121. # there is enough memory.  So use the new GNU malloc.
  122. # MALLOC = gmalloc.o
  123.  
  124. # Use the GNU getopt unless you have problems with it.
  125. # The IRIS version could probably benefit from being assembled with
  126. # libmalloc rather than the ordinary malloc.
  127. LIBIBERTY_SRC_DIR = $(srcdir)/../libiberty
  128. LIBIBERTY_BIN_DIR = ./../libiberty
  129. LIBIBERTY = $(LIBIBERTY_BIN_DIR)/libiberty.a
  130.  
  131. # Code shared by all the binutils.
  132. BULIBS = bucomm.o version.o filemode.o
  133.  
  134. ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
  135.  
  136. BFD = $(LIBDIR)/libbfd.a
  137. OPCODES = $(OPCODEDIR)/libopcodes.a
  138.  
  139. RUNTESTFLAGS = 
  140. FLAGS_TO_PASS = \
  141.     "RUNTESTFLAGS=$(RUNTESTFLAGS) \
  142.     SIZE=`if [ -f $$rootme/$(SIZE_PROG) ] ; then echo $$rootme/$(SIZE_PROG) ; else echo $(SIZE_PROG); fi` \
  143.     COPY=`if [ -f $$rootme/$(COPY_PROG) ] ; then echo $$rootme/$(COPY_PROG) ; else echo $(COPY_PROG); fi` \
  144.     NM=`if [ -f $$rootme/$(NM_PROG) ] ; then echo $$rootme/$(NM_PROG) ; else echo $(NM_PROG); fi` \
  145.     AR=`if [ -f $$rootme/$(AR_PROG) ] ; then echo $$rootme/$(AR_PROG) ; else echo $(AR_PROG); fi` \
  146.     OBJDUMP=`if [ -f $$rootme/$(OBJDUMP_PROG) ] ; then echo $$rootme/$(OBJDUMP_PROG) ; else echo $(OBJDUMP_PROG); fi` \
  147.     STRIP=`if [ -f $$rootme/$(STRIP_PROG) ] ; then echo $$rootme/$(STRIP_PROG) ; else echo $(STRIP_PROG); fi` \
  148.     RANLIB=`if [ -f $$rootme/$(RANLIB_PROG) ] ; then echo $$rootme/$(RANLIB_PROG) ; else echo $(RANLIB_PROG); fi` \
  149.     DEMANGLE=`if [ -f $$rootme/$(DEMANGLER_PROG) ] ; then echo $$rootme/$(DEMANGLER_PROG) ; else echo $(DEMANGLER_PROG); fi`"
  150.  
  151. #
  152. ## The rules
  153.  
  154. all: $(ADDL_LIBS) $(PROGS)
  155.  
  156. testsuite:
  157.     if [ -d testsuite ]; then \
  158.             (rootme=`pwd`/ ; export rootme ; \
  159.              rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
  160.              cd testsuite; $(MAKE) FLAGS_TO_PASS=$(FLAGS_TO_PASS)); \
  161.     else true ; fi
  162.  
  163. check: force
  164.     rootme=`pwd`; export rootme; cd testsuite ; \
  165.     $(MAKE) check $(FLAGS_TO_PASS)
  166. #    /bin/sh $(srcdir)/sanity.sh .
  167.  
  168. installcheck:
  169.     /bin/sh $(srcdir)/sanity.sh $(bindir)
  170.  
  171. info: binutils.info
  172.  
  173. dvi: binutils.dvi
  174.  
  175. #$(BFD):$(LIBDIR)/../common/*.c
  176. #    (cd $(LIBDIR); make)
  177.  
  178. $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
  179.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(LOADLIBES)
  180.  
  181. $(COPY_PROG): $(ADDL_LIBS) copy.o not-strip.o $(BFD)
  182.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o not-strip.o $(ADDL_LIBS) $(LOADLIBES)
  183.  
  184. $(STRIP_PROG): $(ADDL_LIBS) copy.o is-strip.o $(BFD)
  185.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(STRIP_PROG) copy.o is-strip.o $(ADDL_LIBS) $(LOADLIBES)
  186.  
  187. $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
  188.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES)
  189.  
  190. $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(BFD) $(OPCODES)
  191.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(LOADLIBES)
  192.  
  193. $(DEMANGLER_PROG): $(LIBIBERTY_SRC_DIR)/cplus-dem.c
  194.     $(CC) $(LDFLAGS) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DMAIN -o $(DEMANGLER_PROG) $(LIBIBERTY_SRC_DIR)/cplus-dem.c $(LIBIBERTY) $(LOADLIBES)
  195.  
  196. arparse.c:arparse.y
  197.     $(BISON) $(BISONFLAGS)  $(srcdir)/arparse.y
  198.     -mv y.tab.c arparse.c
  199.     -mv y.tab.h arparse.h
  200.  
  201.  
  202. arlex.c: arlex.l
  203.     $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
  204.     mv lex.yy.c arlex.c
  205.  
  206. $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
  207.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
  208.  
  209. $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
  210.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
  211.  
  212. # This rule creates a single binary that switches between ar and ranlib
  213. # by looking at argv[0].  Use this kludge to save some disk space.
  214. # However, you have to install things by hand.
  215. # (That is after 'make install', replace the installed ranlib by a link to ar.)
  216.  
  217. # Alternatively, you can install ranlib.sh as ranlib.
  218.  
  219. ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
  220.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
  221.     -rm -f $(RANLIB_PROG)
  222.     -ln $(AR_PROG) $(RANLIB_PROG)
  223.  
  224. # copy and strip in one binary that uses argv[0] to decide its action.
  225.  
  226. copy_with_strip: $(ADDL_LIBS) copy.o maybe-strip.o $(BFD)
  227.     $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o maybe-strip.o $(ADDL_LIBS) $(LOADLIBES)
  228.     -rm -f $(STRIP_PROG)
  229.     -ln $(COPY_PROG) $(STRIP_PROG)
  230.  
  231. stage1: force
  232.     - mkdir stage1
  233.     - mv -f $(STAGESTUFF) stage1
  234.  
  235. stage2: force
  236.     - mkdir stage2
  237.     - mv -f $(STAGESTUFF) stage2
  238.  
  239. stage3: force
  240.     - mkdir stage3
  241.     - mv -f $(STAGESTUFF) stage3
  242.  
  243. against=stage2
  244.  
  245. comparison: force
  246.     for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
  247.  
  248. de-stage1: force
  249.     - (cd stage1 ; mv -f * ..)
  250.     - rmdir stage1
  251.  
  252. de-stage2: force
  253.     - (cd stage2 ; mv -f * ..)
  254.     - rmdir stage2
  255.  
  256. de-stage3: force
  257.     - (cd stage3 ; mv -f * ..)
  258.     - rmdir stage3
  259.  
  260. ######################################################################
  261. # DOCUMENTATION TARGETS
  262. # TeX output
  263. binutils.dvi: $(srcdir)/binutils.texi
  264.     $(TEXI2DVI) $(srcdir)/binutils.texi
  265.  
  266. # info file for online browsing
  267. binutils.info: $(srcdir)/binutils.texi
  268.     $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
  269.  
  270. #   different targets for -ms, -mm, -me
  271. # Try to use a recent texi2roff.  v2 was put on prep in jan91.
  272. # If you want an index, see texi2roff doc for postprocessing 
  273. # and add -i to texi2roff invocations below.
  274. # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
  275. #    correspondint -e lines when later texi2roff's are current)
  276. # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
  277. # + @c's deleted explicitly because texi2roff sees texinfo commands in them
  278. # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
  279. # + @alphaenumerate is ridiculously new, turned into @enumerate
  280.  
  281. # roff output (-ms)
  282. binutils.ms: $(srcdir)/binutils.texi
  283.     sed -e '/\\input texinfo/d' \
  284.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  285.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  286.         -e '/^@c/d' \
  287.         -e 's/{.*,,/{/' \
  288.         -e 's/@ / /g' \
  289.         -e 's/^@alphaenumerate/@enumerate/g' \
  290.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  291.         $(srcdir)/binutils.texi | \
  292.     $(TEXI2ROFF) -ms | \
  293.     sed -e 's/---/\\(em/g' \
  294.     >binutils.ms 
  295.  
  296. # roff output (-mm)
  297. # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, 
  298. #   try leaving them in
  299. binutils.mm: $(srcdir)/binutils.texi
  300.     sed -e '/\\input texinfo/d' \
  301.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  302.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  303.         -e '/^@c/d' \
  304.         -e 's/{.*,,/{/' \
  305.         -e '/@noindent/d' \
  306.         -e 's/@ / /g' \
  307.         -e 's/^@alphaenumerate/@enumerate/g' \
  308.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  309.         $(srcdir)/binutils.texi | \
  310.     $(TEXI2ROFF) -mm | \
  311.     sed -e 's/---/\\(em/g' \
  312.         >binutils.mm
  313.  
  314. # roff output (-me)
  315. binutils.me: $(srcdir)/binutils.texi
  316.     sed -e '/\\input texinfo/d' \
  317.         -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
  318.         -e '/^@ifinfo/,/^@end ifinfo/d' \
  319.         -e '/^@c/d' \
  320.         -e 's/{.*,,/{/' \
  321.         -e 's/@ / /g' \
  322.         -e 's/^@alphaenumerate/@enumerate/g' \
  323.         -e 's/^@end alphaenumerate/@end enumerate/g' \
  324.         $(srcdir)/binutils.texi | \
  325.     $(TEXI2ROFF) -me | \
  326.     sed -e 's/---/\\(em/g' \
  327.     >binutils.me 
  328.  
  329.  
  330. ######################################################################
  331.  
  332. mostlyclean:
  333.     -rm -f *.o *~ \#* core binutils.?? binutils.???
  334. clean: mostlyclean
  335.     -rm -f $(PROGS)
  336. distclean: clean
  337.     -rm -f Makefile config.status sysdep.h
  338. realclean: distclean
  339.     -rm -f $(DISTSTUFF) TAGS
  340.  
  341. etags tags: TAGS
  342.  
  343. TAGS: force
  344.     etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
  345.  
  346. install: all
  347.     -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
  348.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  349.     -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
  350.     -for i in $(PROGS) ; do \
  351.         $(INSTALL_PROGRAM) $$i $(bindir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t` ; \
  352.     done
  353.     -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
  354.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  355.     -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
  356.     -for i in $(MANPAGES) ; do \
  357.         $(INSTALL_DATA) $(srcdir)/$$i.1 $(man1dir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t`.1 ; \
  358.     done
  359.     -if [ -d $(tooldir) ]; then \
  360.        if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
  361.        for i in nm strip ; do \
  362.          rm -f $(tooldir)/bin/$$i; \
  363.          ln $(bindir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t` $(tooldir)/bin/$$i \
  364.           || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$i; \
  365.        done; \
  366.      else true; fi        
  367.  
  368. install-info: info
  369.     -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
  370.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  371.     -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
  372.     for i in *.info* ; do \
  373.         $(INSTALL_DATA) $$i $(infodir)/$$i ; \
  374.     done
  375.  
  376. clean-info:
  377.     -rm -rf *.info*
  378.  
  379. # Making a dist:
  380. # cvs rtag binutils-x-yy ld+utils
  381. # cvs co -r binutils-x-yy ld+utils
  382. # Sanitize
  383. # cd {HERE}; make dist [-f Makefile.in]
  384.  
  385. dist: $(DIST_NAME).tar.Z
  386.  
  387. diststuff: $(DISTSTUFF)
  388.  
  389. $(DIST_NAME).tar.Z:
  390.     cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
  391.     make diststuff -f Makefile.in
  392.     cd ../ld; make diststuff -f Makefile.in
  393.     cd ../gprof; make diststuff -f Makefile.in
  394.     cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
  395.     # Take out texinfo from configurable dirs
  396.     mv ../configure.in tmp; \
  397.       sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
  398.     cd ..; chmod og=u `find . -print`
  399.     cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
  400.     rm -rf ../../$(DIST_NAME)
  401.  
  402. # These get around a bug in Sun Make in SunOS 4.1.1
  403. alloca.o:alloca.c
  404. ar.o: ar.c
  405. arsup.o: arsup.c
  406. bucomm.o: bucomm.c
  407. copy.o: copy.c
  408. filemode.o:filemode.c
  409. getopt.o:getopt.c
  410. getopt1.o:getopt1.c
  411. gmalloc.o:gmalloc.c
  412. is-ranlib.o:is-ranlib.c
  413. is-strip.o:is-strip.c
  414. maybe-ranlib.o:maybe-ranlib.c
  415. maybe-strip.o:maybe-strip.c
  416. nm.o: nm.c
  417. not-ranlib.o:not-ranlib.c
  418. not-strip.o:not-strip.c
  419. objdump.o: objdump.c
  420. size.o: size.c
  421. strip.o:strip.c
  422. version.o: $(srcdir)/version.c
  423.     $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' -c $(srcdir)/version.c
  424.  
  425. #-----------------------------------------------------------------------------
  426. #        'STANDARD' GNU/960 TARGETS BELOW THIS POINT
  427. #
  428. # 'VERSION' file must be present and contain a string of the form "x.y"
  429. #-----------------------------------------------------------------------------
  430.  
  431. ver960.c: FORCE
  432.     rm -f ver960.c
  433.     echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
  434.  
  435.  
  436. # Dummy target to force execution of dependent targets.
  437. #
  438. force:
  439.  
  440. # Target to uncomment host-specific lines in this makefile.  Such lines must
  441. # have the following string beginning in column 1: #__<hostname>__#
  442. # Original Makefile is backed up as 'Makefile.old'.
  443. #
  444. # Invoke with:  make make HOST=xxx
  445. #
  446. make:
  447.     -@if test $(HOST)x = x ; then \
  448.         echo 'Specify "make make HOST=???"'; \
  449.         exit 1; \
  450.     fi ; \
  451.     grep -s "^#The next line was generated by 'make make'" Makefile; \
  452.     if test $$? = 0 ; then    \
  453.         echo "Makefile has already been processed with 'make make'";\
  454.         exit 1; \
  455.     fi ; \
  456.     mv -f Makefile Makefile.old; \
  457.     echo "#The next line was generated by 'make make'"     >Makefile ; \
  458.     echo "HOST=$(HOST)"                    >>Makefile ; \
  459.     echo                            >>Makefile ; \
  460.     sed "s/^#__$(HOST)__#//" < Makefile.old            >>Makefile
  461.  
  462. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  463.     $(SHELL) ./config.status
  464.  
  465. ### Local Variables: ***
  466. ### mode:fundamental ***
  467. ### page-delimiter: "^# " ***
  468. ### End: ***
  469. ### end of file
  470.